home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zdps1.c < prev    next >
C/C++ Source or Header  |  1997-07-07  |  10KB  |  418 lines

  1. /* Copyright (C) 1990, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zdps1.c */
  20. /* Level 2 / Display PostScript graphics extensions */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsmatrix.h"
  25. #include "gspath.h"
  26. #include "gspath2.h"
  27. #include "gsstate.h"
  28. #include "ialloc.h"
  29. #include "igstate.h"
  30. #include "ivmspace.h"
  31. #include "store.h"
  32. #include "stream.h"
  33. #include "ibnum.h"
  34.  
  35. /* Imported data */
  36. extern op_proc_p zcopy_procs[t_next_index];
  37.  
  38. /* Forward references */
  39. private int gstate_unshare(P1(os_ptr));
  40.  
  41. /* Structure descriptors */
  42. public_st_igstate_obj();
  43.  
  44. /* Initialize by adding an entry for gstates to the `copy' operator. */
  45. /* This is done with a hack -- we know that gstates are the only */
  46. /* t_astruct subtype that implements copy. */
  47. private void
  48. zdps1_init(void)
  49. {    /* zdevice2_init might have already initialized this. */
  50.     /* A hack on top of a hack! */
  51.     if ( zcopy_procs[t_astruct] == zcopy_procs[t_struct] )
  52.       zcopy_procs[t_astruct] = zcopy_gstate;
  53. }
  54.  
  55. /* ------ Graphics state ------ */
  56.  
  57. /* <bool> setstrokeadjust - */
  58. private int
  59. zsetstrokeadjust(register os_ptr op)
  60. {    check_type(*op, t_boolean);
  61.     gs_setstrokeadjust(igs, op->value.boolval);
  62.     pop(1);
  63.     return 0;
  64. }
  65.  
  66. /* - currentstrokeadjust <bool> */
  67. private int
  68. zcurrentstrokeadjust(register os_ptr op)
  69. {    push(1);
  70.     make_bool(op, gs_currentstrokeadjust(igs));
  71.     return 0;
  72. }
  73.  
  74. /* ------ Graphics state objects ------ */
  75.  
  76. /* Check to make sure that all the elements of a graphics state */
  77. /* can be stored in the given allocation space. */
  78. /****** DOESN'T CHECK THE NON-REFS. ****** */
  79. private int
  80. gstate_check_space(int_gstate *isp, uint space)
  81. {
  82. #define gsref_check(p) store_check_space(space, p)
  83.     int_gstate_map_refs(isp, gsref_check);
  84. #undef gsref_check
  85.     return 0;
  86. }
  87.  
  88. /* - gstate <gstate> */
  89. int
  90. zgstate(register os_ptr op)
  91. {    int code = gstate_check_space(istate, icurrent_space);
  92.     igstate_obj *pigo;
  93.     gs_state *pnew;
  94.     int_gstate *isp;
  95.  
  96.     if ( code < 0 )
  97.       return code;
  98.     pigo = ialloc_struct(igstate_obj, &st_igstate_obj, "gstate");
  99.     if ( pigo == 0 )
  100.       return_error(e_VMerror);
  101.     pnew = gs_state_copy(igs, imemory);
  102.     if ( pnew == 0 )
  103.       {    ifree_object(pigo, "gstate");
  104.         return_error(e_VMerror);
  105.       }
  106.     isp = gs_int_gstate(pnew);
  107.     int_gstate_map_refs(isp, ref_mark_new);
  108.     push(1);
  109.     /*
  110.      * Since igstate_obj isn't a ref, but only contains a ref,
  111.      * save won't clear its l_new bit automatically, and
  112.      * restore won't set it automatically; we have to make sure
  113.      * this ref is on the changes chain.
  114.      */
  115.     make_iastruct(op, a_all, pigo);
  116.     make_null(&pigo->gstate);
  117.     ref_save(op, &pigo->gstate, "gstate");
  118.     make_istruct_new(&pigo->gstate, 0, pnew);
  119.     return 0;
  120. }
  121.  
  122. /* copy for gstates */
  123. int
  124. zcopy_gstate(register os_ptr op)
  125. {    os_ptr op1 = op - 1;
  126.     gs_state *pgs;
  127.     gs_state *pgs1;
  128.     int_gstate *pistate;
  129.     gs_memory_t *mem;
  130.     int code;
  131.     check_stype(*op, st_igstate_obj);
  132.     check_stype(*op1, st_igstate_obj);
  133.     check_write(*op);
  134.     code = gstate_unshare(op);
  135.     if ( code < 0 )
  136.       return code;
  137.     pgs = igstate_ptr(op);
  138.     pgs1 = igstate_ptr(op1);
  139.     pistate = gs_int_gstate(pgs);
  140.     code = gstate_check_space(gs_int_gstate(pgs1), r_space(op));
  141.     if ( code < 0 ) return code;
  142. #define gsref_save(p) ref_save(op, p, "copygstate")
  143.     int_gstate_map_refs(pistate, gsref_save);
  144. #undef gsref_save
  145.     mem = gs_state_swap_memory(pgs, imemory);
  146.     code = gs_copygstate(pgs, pgs1);
  147.     gs_state_swap_memory(pgs, mem);
  148.     if ( code < 0 )
  149.       return code;
  150.     int_gstate_map_refs(pistate, ref_mark_new);
  151.     *op1 = *op;
  152.     pop(1);
  153.     return 0;
  154. }
  155.  
  156. /* <gstate> currentgstate <gstate> */
  157. int
  158. zcurrentgstate(register os_ptr op)
  159. {    gs_state *pgs;
  160.     int_gstate *pistate;
  161.     int code;
  162.     gs_memory_t *mem;
  163.     check_stype(*op, st_igstate_obj);
  164.     check_write(*op);
  165.     code = gstate_unshare(op);
  166.     if ( code < 0 )
  167.       return code;
  168.     pgs = igstate_ptr(op);
  169.     pistate = gs_int_gstate(pgs);
  170.     code = gstate_check_space(istate, r_space(op));
  171.     if ( code < 0 ) return code;
  172. #define gsref_save(p) ref_save(op, p, "currentgstate")
  173.     int_gstate_map_refs(pistate, gsref_save);
  174. #undef gsref_save
  175.     mem = gs_state_swap_memory(pgs, imemory);
  176.     code = gs_currentgstate(pgs, igs);
  177.     gs_state_swap_memory(pgs, mem);
  178.     if ( code < 0 )
  179.       return code;
  180.     int_gstate_map_refs(pistate, ref_mark_new);
  181.     return 0;
  182. }
  183.  
  184. /* <gstate> setgstate - */
  185. int
  186. zsetgstate(register os_ptr op)
  187. {    int code;
  188.     check_stype(*op, st_igstate_obj);
  189.     check_read(*op);
  190.     code = gs_setgstate(igs, igstate_ptr(op));
  191.     if ( code < 0 ) return code;
  192.     pop(1);
  193.     return 0;
  194. }
  195.  
  196. /* ------ Rectangles ------- */
  197.  
  198. /* We preallocate a short list for rectangles, because */
  199. /* the rectangle operators usually will involve very few rectangles. */
  200. #define max_local_rect 5
  201. typedef struct local_rects_s {
  202.     gs_rect *pr;
  203.     uint count;
  204.     gs_rect rl[max_local_rect];
  205. } local_rects;
  206.  
  207. /* Forward references */
  208. private int rect_get(P2(local_rects *, os_ptr));
  209. private void rect_release(P1(local_rects *));
  210.  
  211. /* <x> <y> <width> <height> .rectappend - */
  212. /* <numarray|numstring> .rectappend - */
  213. private int
  214. zrectappend(os_ptr op)
  215. {    local_rects lr;
  216.     int npop = rect_get(&lr, op);
  217.     int code;
  218.     if ( npop < 0 ) return npop;
  219.     code = gs_rectappend(igs, lr.pr, lr.count);
  220.     rect_release(&lr);
  221.     if ( code < 0 ) return code;
  222.     pop(npop);
  223.     return 0;
  224. }
  225.  
  226. /* <x> <y> <width> <height> rectclip - */
  227. /* <numarray|numstring> rectclip - */
  228. private int
  229. zrectclip(os_ptr op)
  230. {    local_rects lr;
  231.     int npop = rect_get(&lr, op);
  232.     int code;
  233.     if ( npop < 0 ) return npop;
  234.     code = gs_rectclip(igs, lr.pr, lr.count);
  235.     rect_release(&lr);
  236.     if ( code < 0 ) return code;
  237.     pop(npop);
  238.     return 0;
  239. }
  240.  
  241. /* <x> <y> <width> <height> rectfill - */
  242. /* <numarray|numstring> rectfill - */
  243. private int
  244. zrectfill(os_ptr op)
  245. {    local_rects lr;
  246.     int npop = rect_get(&lr, op);
  247.     int code;
  248.     if ( npop < 0 ) return npop;
  249.     code = gs_rectfill(igs, lr.pr, lr.count);
  250.     rect_release(&lr);
  251.     if ( code < 0 ) return code;
  252.     pop(npop);
  253.     return 0;
  254. }
  255.  
  256. /* <x> <y> <width> <height> rectstroke - */
  257. /* <numarray|numstring> rectstroke - */
  258. private int
  259. zrectstroke(os_ptr op)
  260. {    gs_matrix mat;
  261.     local_rects lr;
  262.     int npop, code;
  263.     if ( read_matrix(op, &mat) >= 0 )
  264.        {    /* Concatenate the matrix to the CTM just before */
  265.         /* stroking the path. */
  266.         npop = rect_get(&lr, op - 1);
  267.         if ( npop < 0 ) return npop;
  268.         code = gs_rectstroke(igs, lr.pr, lr.count, &mat);
  269.         npop++;
  270.        }
  271.     else
  272.        {    /* No matrix. */
  273.         npop = rect_get(&lr, op);
  274.         if ( npop < 0 ) return npop;
  275.         code = gs_rectstroke(igs, lr.pr, lr.count, (gs_matrix *)0);
  276.        }
  277.     rect_release(&lr);
  278.     if ( code < 0 ) return code;
  279.     pop(npop);
  280.     return 0;
  281. }
  282.  
  283. /* --- Internal routines --- */
  284.  
  285. /* Get rectangles from the stack. */
  286. /* Return the number of elements to pop (>0) if OK, <0 if error. */
  287. private int
  288. rect_get(local_rects *plr, os_ptr op)
  289. {    int format, code;
  290.     uint n, count;
  291.     gs_rect *pr;
  292.     double rv[4];
  293.  
  294.     switch ( r_type(op) )
  295.        {
  296.     case t_array:
  297.     case t_mixedarray:
  298.     case t_shortarray:
  299.     case t_string:
  300.         code = num_array_format(op);
  301.         if ( code < 0 )
  302.           return code;
  303.         format = code;
  304.         count = num_array_size(op, format);
  305.         if ( count % 4 )
  306.           return_error(e_rangecheck);
  307.         count /= 4;
  308.         break;
  309.     default:            /* better be 4 numbers */
  310.         code = num_params(op, 4, rv);
  311.         if ( code < 0 )
  312.           return code;
  313.         plr->pr = plr->rl;
  314.         plr->count = 1;
  315.         plr->rl[0].q.x = (plr->rl[0].p.x = rv[0]) + rv[2];
  316.         plr->rl[0].q.y = (plr->rl[0].p.y = rv[1]) + rv[3];
  317.         return 4;
  318.        }
  319.     plr->count = count;
  320.     if ( count <= max_local_rect )
  321.         pr = plr->rl;
  322.     else
  323.     {    pr = (gs_rect *)ialloc_byte_array(count, sizeof(gs_rect),
  324.                           "rect_get");
  325.         if ( pr == 0 )
  326.           return_error(e_VMerror);
  327.     }
  328.     plr->pr = pr;
  329.     for ( n = 0; n < count; n++, pr++ )
  330.        {    ref rnum;
  331.         int i;
  332.  
  333.         for ( i = 0; i < 4; i++ )
  334.            {    code = num_array_get((const ref *)op, format,
  335.                          (n << 2) + i, &rnum);
  336.             switch ( code )
  337.                {
  338.             case t_integer:
  339.                 rv[i] = rnum.value.intval;
  340.                 break;
  341.             case t_real:
  342.                 rv[i] = rnum.value.realval;
  343.                 break;
  344.             default:    /* code < 0 */
  345.                 return code;
  346.                }
  347.            }
  348.         pr->q.x = (pr->p.x = rv[0]) + rv[2];
  349.         pr->q.y = (pr->p.y = rv[1]) + rv[3];
  350.        }
  351.     return 1;
  352. }
  353.  
  354. /* Release the rectangle list if needed. */
  355. private void
  356. rect_release(local_rects *plr)
  357. {    if ( plr->pr != plr->rl )
  358.         ifree_object(plr->pr, "rect_release");
  359. }
  360.  
  361. /* ------ Graphics state ------ */
  362.  
  363. /* <llx> <lly> <urx> <ury> setbbox - */
  364. int
  365. zsetbbox(register os_ptr op)
  366. {    double box[4];
  367.  
  368.     int code = num_params(op, 4, box);
  369.     if ( code < 0 ) return code;
  370.     if ( (code = gs_setbbox(igs, box[0], box[1], box[2], box[3])) < 0 )
  371.         return code;
  372.     pop(4);
  373.     return 0;
  374. }
  375.  
  376. /* ------ Initialization procedure ------ */
  377.  
  378. BEGIN_OP_DEFS(zdps1_l2_op_defs) {
  379.         op_def_begin_level2(),
  380.         /* Graphics state */
  381.     {"0currentstrokeadjust", zcurrentstrokeadjust},
  382.     {"1setstrokeadjust", zsetstrokeadjust},
  383.         /* Graphics state objects */
  384.     {"1currentgstate", zcurrentgstate},
  385.     {"0gstate", zgstate},
  386.     {"1setgstate", zsetgstate},
  387.         /* Rectangles */
  388.     {"1.rectappend", zrectappend},
  389.     {"1rectclip", zrectclip},
  390.     {"1rectfill", zrectfill},
  391.     {"1rectstroke", zrectstroke},
  392.         /* Graphics state components */
  393.     {"4setbbox", zsetbbox},
  394. END_OP_DEFS(zdps1_init) }
  395.  
  396. /* ------ Internal routines ------ */
  397.  
  398. /* Ensure that a gstate is not shared with an outer save level. */
  399. /* *op is of type t_astruct(igstate_obj). */
  400. private int
  401. gstate_unshare(os_ptr op)
  402. {    ref *pgsref = &r_ptr(op, igstate_obj)->gstate;
  403.     gs_state *pgs = r_ptr(pgsref, gs_state);
  404.     gs_state *pnew;
  405.     int_gstate *isp;
  406.     if ( !ref_must_save(pgsref) )
  407.       return 0;
  408.     /* Copy the gstate. */
  409.     pnew = gs_gstate(pgs);
  410.     if ( pnew == 0 )
  411.       return_error(e_VMerror);
  412.     isp = gs_int_gstate(pnew);
  413.     int_gstate_map_refs(isp, ref_mark_new);
  414.     ref_do_save(op, pgsref, "gstate_unshare");
  415.     make_istruct_new(pgsref, 0, pnew);
  416.     return 0;
  417. }
  418.